#ティック設定

このサンプルでは、​​さまざまな目盛り機能を使用して目盛りラベルを X 軸に表示する方法を制御する方法を示します。これらの機能には次のものが含まれます。

  • 複数行のラベル
  • ラベルのフィルタリング
  • 目盛りの色を変更する
  • X 軸の目盛りの配置を変更する
const config = {
  type: 'line',
  data: data,
  options: {
    responsive: true,
    plugins: {
      title: {
        display: true,
        text: 'Chart with Tick Configuration'
      }
    },
    scales: {
      x: {
        ticks: {
          // For a category axis, the val is the index so the lookup via getLabelForValue is needed
          callback: function(val, index) {
            // Hide every 2nd tick label
            return index % 2 === 0 ? this.getLabelForValue(val) : '';
          },
          color: 'red',
        }
      }
    }
  },
};

#ドキュメント

最終更新: 2023 年 4 月 28 日、午前 5 時 18 分 20 秒